home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / sticpsrc.lzh / SOURCE.ARC / COMBIOS.H < prev    next >
C/C++ Source or Header  |  1989-07-21  |  343b  |  12 lines

  1. /* COMBIOS interface control block */
  2. struct com {
  3.     unsigned drtype;    /* Driver type 1=NONE 2=COMBIOS 3=FOSSIL */
  4.     unsigned speed;        /* Line speed */
  5.     unsigned mode;        /* Line mode */
  6.     unsigned stat;        /* Accumulated receive status */
  7.     unsigned txbuf;        /* Transmit buffer size */
  8. };
  9.  
  10. extern struct com com[];
  11. extern unsigned combios();
  12.